home *** CD-ROM | disk | FTP | other *** search
- package com.sun.java.swing.undo;
-
- public interface UndoableEdit {
- boolean addEdit(UndoableEdit var1);
-
- boolean canRedo();
-
- boolean canUndo();
-
- void die();
-
- String getPresentationName();
-
- String getRedoPresentationName();
-
- String getUndoPresentationName();
-
- boolean isSignificant();
-
- void redo() throws CannotRedoException;
-
- boolean replaceEdit(UndoableEdit var1);
-
- void undo() throws CannotUndoException;
- }
-